@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 8%;
    
}

.logo{
    cursor: pointer;

}

header img{
    height: 120px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    
}

.nav_links {
    list-style: none;

}

.nav_links li{
    display: inline-block;
    padding: 0px 30px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover{
    color: #0088a9;
}

button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border:none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(0,136,169,0.8);

}
body {
    padding: 0px;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1{
    color: black;
    background-color: white;
    text-align: center;
    font-size: 1.5em;
    padding: 20px 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius:20px ;
    margin-left: 20px;
    margin-right: 20px;
}

p{
    color: white;
    background-color: #3f3f3f;
    padding: 30px;
    margin-top: 30px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5em;
    margin-left: 20px;
    margin-right: 20px;
}


.bottom-bar{
    background: #eb9951;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
  
}
.bottom-bar h4{
    color: #ffffff;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}




*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    min-height:100vh;
    display:grid;
    place-items:center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.download-btn{
    background-color: DodgerBlue;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius:5px;
    margin-bottom: 10px;
    text-align: center;
}

.download-btn:hover {
    background-color: RoyalBlue;
  }

  h2{
    color: white;
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  footer{
    background-color: #3f3f3f;
    height: 100px;
    margin-top: auto;
    width: 100%;
    padding: 30px;
    margin-top: 40px;
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h4{
    text-align: center;
    color: white;
    background-color: #3f3f3f;
}

  /* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 25px;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav_links {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        flex-direction: column;
    }

    .nav_links li {
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .nav_links.active {
        display: block;
    }
}